home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / NeXT-Icons / next-icon@gun.com / Apps / ImagePortfolio / ExpandImage.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-03  |  799 b   |  36 lines

  1. // -------------------------------------------------------------------------------------
  2. // ExpandImage.h
  3. // -------------------------------------------------------------------------------------
  4.  
  5. extern "Objective-C" {
  6. #import <objc/objc.h>
  7. }
  8.  
  9. // -------------------------------------------------------------------------------------
  10. @interface ExpandImage : Object
  11. {
  12.  
  13.     id            window;
  14.     NXSize        minWindowSize;
  15.     NXSize        minContentSize;
  16.     
  17.     id            imageView;
  18.     id            imageScroller;
  19.     
  20.     id            imagePopup;
  21.     id            imageMenu;
  22.     id            useAlphaSw;
  23.     
  24.     id            controlBox;
  25.     float        controlHeight;
  26.   
  27. }
  28.  
  29. // -------------------------------------------------------------------------------------
  30. - clearImage;
  31. - showImage:theImage:(const char*)fileName title:(const char*)title;
  32. - setImageRep:(int)repNum;
  33. - orderOut:sender;
  34.  
  35. @end
  36.